home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / ImageMagick / xtp / xtp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  819 b   |  40 lines

  1. /*
  2.   Include declarations
  3. */
  4. #include <stdio.h>
  5. #if __STDC__ || defined(sgi) || defined(_AIX)
  6. #include <stdlib.h>
  7. #else
  8. #ifndef vms
  9. #include <malloc.h>
  10. #include <memory.h>
  11. #endif
  12. #endif
  13. #include <ctype.h>
  14. #include <math.h>
  15. #include <string.h>
  16.  
  17. /*
  18.   Define declarations for the Display program.
  19. */
  20. #if __STDC__ || defined(sgi) || defined(_AIX)
  21. #define _Declare(formal_parameters) formal_parameters
  22. #else
  23. #define const 
  24. #define _Declare(formal_parameters) ()
  25. #endif
  26. #define False  0
  27. #define True  1
  28. #define Warning(message,qualifier)  \
  29. {  \
  30.   (void) fprintf(stderr,"%s: %s",client_name,message);  \
  31.   if (qualifier != (char *) NULL)  \
  32.     (void) fprintf(stderr," (%s)",qualifier);  \
  33.   (void) fprintf(stderr,".\n");  \
  34. }
  35.  
  36. #ifndef lint
  37. static char 
  38.   Version[]="@(#)ImageMagick 2.1 92/10/10 cristy@dupont.com";
  39. #endif
  40.